Socket
Socket
Sign inDemoInstall

@rollup-extras/utils

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rollup-extras/utils

Utils to support creation of rollup plugins.


Version published
Weekly downloads
996
increased by1.22%
Maintainers
1
Weekly downloads
 
Created
Source

Utils

Utils to support the development of rollup plugins.

Disclaimer: It is not a substitute for the @rollup/pluginutils package.

Changelog

Installation

npm install --save-dev @rollup-extras/utils

Options Utils

function getOptions<T extends string | string[] | undefined | Record<string, unknown>, D, F extends DefaultsFactory<Partial<{[K in C]: string[]}> & Partial<Exclude<T, SimpleOptions>>>, C extends string>(options: T | undefined, defaults: D | undefined, field: C, factory?: F);

Utility function to get options object.

  • options - object passed to the plugin, can be string, string[] or undefined (applied second)
  • defaults - defaults (applied first)
  • factory - additional factories (applied last)
  • field - string to set a property in case options is string or string[], if options[field] is string it will be converted to string[]

Multi-config Plugin Base

Utility to construct a plugin that should/can be executed when multiple configs are used to gather information for the plugin.

function multiConfigPluginBase(useWriteBundle: boolean, pluginName: string, execute: ExecuteFn): Partial<PluginHooks>
  • useWriteBundle - truthy if execute function should be executed on the last writeBundle, falsy if it should be executed on generateBundle
  • pluginName - plugin name
  • execute - function to execute

Returns a plugin instance.

Statistics

Utility to construct a collector of data that reports count if verbose / more than 5 items. The assumption is that in case of verbose an external logger will take care of reporting. It is very niche and probably you don't need it. The main idea for this is that in case we report thousands of files we are not holding data in memory but discarding it / writing it to log.

function statistics(verbose: boolean, messageFactory: (result: number | string[]) => string): (name?: string) => undefined | string

Returns a collector that accepts new data if you pass a non-null/non-undefined parameter or constructs a message using the message factory.

Types

type SimpleOptions = string | string[] | undefined;

type DefaultsFactory<T extends {[key: string]: unknown}> = {
    [key: string]: ((options: T | undefined, field: string) => unknown);
}

type Result<T extends {[key: string]: unknown}, F extends DefaultsFactory<T>> = T & {
    [key in keyof F]: F[key] extends ((options: T | undefined, field: string) => unknown) ? ReturnType<F[key]> : unknown;
}

License

MIT

Keywords

FAQs

Package last updated on 11 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc